home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 March
/
EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso
/
earcd
/
editor
/
blksedtr.lha
/
BED
/
Rexx
/
Documentize.bed
< prev
next >
Wrap
Text File
|
1996-01-28
|
558b
|
38 lines
/*
** $VER: Documentize.bed 1.0 (2.1.96)
**
** Removes the linefeeds within each paragraph
** Useful for importing documents into wordprocessors or DTP programs
*/
OPTIONS RESULTS
SetDisplayLock ON
SetInputLock ON
SetStatusBar 'This may take a while on large files...'
GetPrefs LeftMargin
left = RESULT
GetPrefs RightMargin
right = RESULT
SetPrefs LeftMargin 0
SetPrefs RightMargin 32000
MoveSOF
RecordMacro QUIET
FormatParagraph
EndMacro
PlayMacro 0
SetPrefs LeftMargin left
SetPrefs RightMargin right
MoveSOF
SetDisplayLock OFF
SetInputLock OFF